home *** CD-ROM | disk | FTP | other *** search
/ Columbia Kermit / kermit.zip / newsgroups / misc.19960715-19961006 / 000413_news@columbia.edu _Fri Sep 27 11:28:50 1996.msg < prev    next >
Internet Message Format  |  2020-01-01  |  5KB

  1. Return-Path: news@columbia.edu
  2. Received: from newsmaster.cc.columbia.edu (newsmaster.cc.columbia.edu [128.59.35.30]) by watsun.cc.columbia.edu (8.7.5/8.7.3) with ESMTP id LAA16345 for <kermit.misc@watsun.cc.columbia.edu>; Fri, 27 Sep 1996 11:28:50 -0400 (EDT)
  3. Received: (from news@localhost) by newsmaster.cc.columbia.edu (8.7.5/8.7.3) id LAA02520 for kermit.misc@watsun; Fri, 27 Sep 1996 11:28:49 -0400 (EDT)
  4. Path: news.columbia.edu!watsun.cc.columbia.edu!fdc
  5. From: fdc@watsun.cc.columbia.edu (Frank da Cruz)
  6. Newsgroups: comp.sys.dec,comp.os.vms,comp.protocols.kermit.misc
  7. Subject: Re: Reading RT-11 floppies with VMS and Installing Kermit
  8. Date: 27 Sep 1996 15:28:29 GMT
  9. Organization: Columbia University
  10. Lines: 76
  11. Message-ID: <52grqt$7i0@apakabar.cc.columbia.edu>
  12. References: <52fj05$8hf@access4.digex.net> <52fof1$oue@nntp.ucs.ubc.ca>
  13. NNTP-Posting-Host: watsun.cc.columbia.edu
  14. Xref: news.columbia.edu comp.sys.dec:42042 comp.os.vms:136281 comp.protocols.kermit.misc:5974
  15.  
  16. In article <52fof1$oue@nntp.ucs.ubc.ca>,
  17. Tim Shoppa <shoppa@alph02.triumf.ca> wrote:
  18. : In article <52fj05$8hf@access4.digex.net>,
  19. : R. D. Davis <rdd@access4.digex.net> wrote:
  20. : >It seems to me that this should be possible, but I can't quite figure
  21. : >out how to do it - that is, mounting and reading RT-11 RX50 floppies
  22. : >using MicroVMS 4.6.  Is this possible?  If so, what do I need to do?
  23. : I'm hoping that your MicroVMS system has all the HELP sections
  24. : installed.  If so, do:
  25. : $ EXCHANGE
  26. : EXCHANGE> HELP
  27. : and you'll figure it out from there.
  28. : >I'm also trying to find a way to install Kermit.  There's no tape
  29. : >drive and no ethernet on this system, just the console terminal port
  30. : >and RX50 floppies.  The console port is attached to a serial port on
  31. : >one of my UNIX systems, instead of to a terminal, to that should help
  32. : >somewhat.  
  33. : >
  34. : >So far, I've transferred a few files, such as ckvhex.mar, to the
  35. : >system connected to the VAX, in an attempt to transfer the text "hex"
  36. : >files to the VAX.  My plan was to do something like enter "create
  37. : >ckvhex.mar" on the VAX and then at the kermit prompt on the UNIX
  38. : >system, enter "transmit ckvhex.mar" then just enter a "ctrl-z" on the
  39. : >VAX when the transfer completed.  
  40. : Yep, this is the typical VMS "bootstrap" procedure for Kermit.
  41. :
  42. : >It doesn't appear to be as simple as I thought it would he, howver.
  43. : >When I connect to the VAX after what I thought was a succesful
  44. : >transfer, I get error messages such as a data overrun error.  Is there
  45. : >some way to avoid this problem in order to tranfer Kermit to this
  46. : >system?
  47. Did you tell VMS to SET TERM /HOSTSYNC/TTSYNC?  Has your transmitting
  48. Kermit been set for Xon/Xoff flow control?  Do you have decent-size
  49. terminal buffers configured for VMS (i.e. longer than the default size
  50. of 76 or whatever it is)?  Have you enabled the Alt-Typeahead buffer?
  51. (See CKVINS.DOC for details about all of this).
  52.  
  53. : You're running a recent C-Kermit on the Unix system?  If so, tell it
  54. : "set transmit pause 250" to have it pause 250 ms between lines.  You can
  55. : turn this number up and down to whatever gives you the fastest reliable
  56. : transfers.  You could also greatly lower the baud rate to the console
  57. : port, too.  (If my memory is correct this requires setting the switch on
  58. : the Microvax II and then rebooting.  It might even take a 120 Reset
  59. : after setting the switch for the change to take effect.)
  60. : Make sure you've got a Hex-ified Kermit binary that'll run on a 4.6
  61. : machine.  I think most of the recent ones have been compiled and linked
  62. : under 6.0 or later.  Somewhere on kermit.columbia.edu there are supposed
  63. : to be binaries that'll work on a 4.x machine, but I can't find them at
  64. : the moment...  I'm sure Frank will appear shortly and point out exactly
  65. : where to find them!
  66. I'd recommend the following procedure.  You have CKVDEH.MAR on the VMS
  67. system already, right?  Next step: TRANSMIT the hex version of Kermit-32,
  68. which is much smaller than C-Kermit, and should run OK on VMS 4.x:
  69.  
  70.   ftp://kermit.columbia.edu/kermit/b/vmsmit.hex
  71.  
  72. Then use ckvdeh.exe (obtained by "macro ckvdeh", "link ckvdeh") to dehexify
  73. it.  C-Kermit 5A(190) is available for VMS 4.x systems as:
  74.  
  75.   ftp://kermit.columbia.edu/kermit/vmshex/ckvvms4.hex
  76.  
  77. Version 6.0 (still in Beta) has not yet been built for VMS 4.x.
  78.  
  79. Then use the resulting vmsmit.exe to transfer the bigger C-Kermit hex file.
  80. Then dehexify it in the same manner.  (See diagram on page 186, "Kermit, A
  81. File Transfer Protocol" :-)
  82.  
  83. - Frank